找传奇、传世资源到传世资源站!
Java 正文

根据word模板生成word

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

根据word模板生成word根据word模板生成wordfrom clipboardfrom clipboardfrom clipboard from clipboard1、相关业务数据转换(图一)2、填充数据,合并模板(图二) 3、设置浏览器下载模式(图三) .
├── poi-tl-master
│   ├── LICENSE
│   ├── README.md
│   ├── dist
│   │   ├── demo.png
│   │   ├── demo_result.png
│   │   ├── style.png
│   │   ├── temp3.png
│   │   ├── temp4.png
│   │   ├── temp5.png
│   │   ├── tempv3.png
│   │   ├── tempv4.png
│   │   └── tempv5.png
│   ├── pom.xml
│   └── src
│       ├── main
│       │   └── java
│       │       ├── com
│       │       │   └── deepoove
│       │       │       └── poi
│       │       │           ├── NiceXWPFDocument.java
│       │       │           ├── XWPFTemplate.java
│       │       │           ├── config
│       │       │           │   ├── Configure.java
│       │       │           │   ├── GramerSymbol.java
│       │       │           │   └── Name.java
│       │       │           ├── data
│       │       │           │   ├── DocxRenderData.java
│       │       │           │   ├── MiniTableRenderData.java
│       │       │           │   ├── NumbericRenderData.java
│       │       │           │   ├── PictureRenderData.java
│       │       │           │   ├── RenderData.java
│       │       │           │   ├── RowRenderData.java
│       │       │           │   ├── TableRenderData.java
│       │       │           │   ├── TextRenderData.java
│       │       │           │   └── style
│       │       │           │       ├── Style.java
│       │       │           │       └── TableStyle.java
│       │       │           ├── exception
│       │       │           │   ├── RenderException.java
│       │       │           │   └── ResolverException.java
│       │       │           ├── policy
│       │       │           │   ├── DocxRenderPolicy.java
│       │       │           │   ├── DynamicTableRenderPolicy.java
│       │       │           │   ├── MiniTableRenderPolicy.java
│       │       │           │   ├── NumbericRenderPolicy.java
│       │       │           │   ├── PictureRenderPolicy.java
│       │       │           │   ├── RenderPolicy.java
│       │       │           │   ├── SelfRenderPolicy.java
│       │       │           │   ├── SimpleTableRenderPolicy.java
│       │       │           │   └── TextRenderPolicy.java
│       │       │           ├── render
│       │       │           │   └── RenderAPI.java
│       │       │           ├── resolver
│       │       │           │   ├── RunEdge.java
│       │       │           │   ├── StyleTextParser.java
│       │       │           │   ├── TemplateFactory.java
│       │       │           │   └── TemplateResolver.java
│       │       │           ├── template
│       │       │           │   ├── ElementTemplate.java
│       │       │           │   └── run
│       │       │           │       └── RunTemplate.java
│       │       │           └── util
│       │       │               ├── BytePictureUtils.java
│       │       │               ├── CodeGenUtils.java
│       │       │               ├── RegexUtils.java
│       │       │               ├── StyleUtils.java
│       │       │               └── TableTools.java
│       │       └── org
│       │           └── apache
│       │               └── poi
│       │                   └── xwpf
│       │                       └── usermodel
│       │                           └── NumberingWrapper.java
│       └── test
│           ├── java
│           │   └── com
│           │       └── deepoove
│           │           └── poi
│           │               └── tl
│           │                   ├── NiceXWPFDocumentTest.java
│           │                   ├── XWPFTemplateTest.java
│           │                   ├── example
│           │                   │   ├── DetailData.java
│           │                   │   ├── DetailTablePolicy.java
│           │                   │   ├── ExperienceData.java
│           │                   │   ├── PaymentData.java
│           │                   │   ├── PaymentExample.java
│           │                   │   ├── ResumeData.java
│           │                   │   ├── ResumeExample.java
│           │                   │   ├── SegmentData.java
│           │                   │   ├── StoryData.java
│           │                   │   └── StoryExample.java
│           │                   ├── policy
│           │                   │   ├── ConfigurePluginTest.java
│           │                   │   ├── DocxRenderTest.java
│           │                   │   ├── MiniTableRenderTest.java
│           │                   │   ├── NumbericRenderTest.java
│           │                   │   ├── PictureRenderTest.java
│           │                   │   └── TextRenderTest.java
│           │                   ├── render
│           │                   │   └── RenderAPITest.java
│           │                   ├── source
│           │                   │   ├── ComplexRenderTest.java
│           │                   │   ├── ComplexVOTest.java
│           │                   │   ├── DataSourceBaseTest.java
│           │                   │   ├── DataSourceTest.java
│           │                   │   ├── DataTest.java
│           │                   │   ├── ListDataRenderPolicy.java
│           │                   │   ├── ListDataRenderTest.java
│           │                   │   ├── MyTableRenderPolicy.java
│           │                   │   └── SimpleTable.java
│           │                   └── util
│           │                       └── CodeGenUtilsTest.java
│           └── resources
│               ├── 0-1.png
│               ├── config.docx
│               ├── docx_render.docx
│               ├── emblem.png
│               ├── logback-test.xml
│               ├── logo.png
│               ├── merge_all.docx
│               ├── merge_picture.docx
│               ├── merge_table.docx
│               ├── merge_xwpf_template.docx
│               ├── numberic.docx
│               ├── picture.docx
│               ├── resume
│               │   ├── 简历.docx
│               │   └── 简历_segment.docx
│               ├── run_merge.docx
│               ├── sayi.png
│               ├── story
│               │   ├── image1.jpeg
│               │   ├── image2.jpeg
│               │   ├── image3.jpeg
│               │   ├── image4.jpeg
│               │   ├── image5.jpeg
│               │   ├── segment.docx
│               │   └── story.docx
│               ├── table.docx
│               ├── template.docx
│               ├── text_render.docx
│               ├── word.txt
│               └── 付款通知书.docx
└── 找例子网_poi-tl-master.zip

37 directories, 109 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复